home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmCircles
- BorderStyle = 0 'None
- ClientHeight = 4095
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3840
- LinkTopic = "Form1"
- ScaleHeight = 4095
- ScaleWidth = 3840
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton cmdQuit
- Caption = "Quit"
- Height = 495
- Left = 2640
- TabIndex = 1
- Top = 840
- Width = 1095
- End
- Begin VB.CommandButton cmdMove
- Caption = "Move and Show Circle"
- Height = 495
- Left = 1560
- TabIndex = 0
- Top = 120
- Width = 2175
- End
- Attribute VB_Name = "frmCircles"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private round As CCircle
- Attribute round.VB_VarHelpID = -1
- Dim x As Integer, y As Integer, r As Single
- Private Sub Form_Load()
- Set round = New CCircle
- End Sub
- Private Sub cmdMove_Click()
- round.Move (500)
- End Sub
- Private Sub cmdQuit_Click()
- End
- End Sub
-